home *** CD-ROM | disk | FTP | other *** search
- /*
-
- This program calculates simple animation with changing cloudiness.
-
- Copyright © 1994 Krzysztof Kobus. All Rights Reserved.
-
- */
-
- Options Results
-
-
- Address CLOUDS.1
-
-
- cl_fft 64
- cl_control displayandsave
- cl_width 200
- cl_height 100
- cl_velocity 0.2
- cl_direction 60
- cl_strength 0.3
- cl_seed 12
- cl_openproject
- IF RC ~= 0 THEN
- DO
- SAY 'Error: 'CLOUDS.LASTERROR
- EXIT
- END
- DO i=-10 TO 30
- cl_frames 2
- cl_density i
- cl_calculate
- IF RC ~= 0 THEN
- DO
- SAY 'Error: 'CLOUDS.LASTERROR
- EXIT
- END
- END
- cl_closeproject
-